home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
MiscKit1.7.1
/
MiscKit
/
Palettes
/
MiscCalendarPalette
/
MiscCalendarView.subproj
/
DateDelegateProtocol.h
next >
Wrap
Text File
|
1995-04-12
|
394b
|
26 lines
// Copyright (C) 1995 Jon Kutemeier
// Use is governed by the MiscKit license
@protocol DateDelegate
- (int)day;
- (int)month;
- (int)year;
- setYear:(int)year month:(int)month day:(int)day;
- (int)numberOfDaysInMonth;
- (int)startDayOfMonth;
- incrementMonth;
- decrementMonth;
- incrementYear;
- decrementYear;
- (const char *)monthStringValue;
- (const char *)dateStringValue;
@end